home *** CD-ROM | disk | FTP | other *** search
/ Dictionaries & Language / Dictionaries and Language (Chestnut CD-ROM) (1993).iso / chinese / gb2pcx12 / gbview.doc < prev    next >
Encoding:
Text File  |  1991-08-31  |  5.0 KB  |  122 lines

  1. Program:       GBVIEW
  2. Author:        Roxin Zhang
  3. Purpose:       Converts chinese GuoBiao file into PCX files.
  4. Requirement:   EGA or better.
  5. Usage:           gbview [options] gb_file_name
  6.  
  7.                where "options" are optional:
  8.  
  9.            -n   No RAM library.  Use this switch if you have
  10.                     less than 200 KB free RAM.
  11.  
  12.                -l#  #-left margin in columns. Default=0.
  13.                -r#  #-right margin in columns. Default=0.
  14.                -c#  #-display background color index:
  15.                     0: Blank, 1: Red, 2: Green, 3: Blue.
  16.  
  17.                -f$  $=full path name of library file if other than default.
  18.  
  19.                -e   640x350 mode, default.
  20.                -v   640x480 mode. VGA required.
  21.                -g   640x200 mode.
  22.                -h   Hercules card (HGC). (not tested!!).
  23.  
  24.                Execute GBVIEW alone will cause a help message displayed.
  25.  
  26.                Multiple options can appear in whatever order:
  27.  
  28.     Examples:  gbview -c2 -v file_name -l2
  29.                gbview -v file_name -c2 -r3
  30.  
  31.  -------------------------------------------------------------------------
  32.            GBVIEW displays one screen at a time.
  33.  
  34.        "F2"    key will cause the current screen to be saved as a B/W
  35.                PCX file.  A beep indicates the save is done.
  36.  
  37.            The PCX files created are named as GSCR0001.PCX, GSCR0002.PCX
  38.                and so on depending on the current page.
  39.  
  40.                A utility program PCXMERGE.EXE is included for combining
  41.                these PCX files into a larger one. (Refer the details to
  42.                PCXMERGE.DOC file).
  43.  
  44.       "PgDn"   key will cause next page to be displayed.
  45.  
  46.       "PgUp"   gets one screen back.
  47.  
  48.       "F5"     key cycles the display background color. But this has
  49.                nothing to do with the colors in the PCX files to be saved.
  50.  
  51.       "ESC"    key will abort the program immediately.
  52.  
  53.       Note:    Everytime you run GVIEW and save the screen, the old
  54.                GSCR0001.PCX, GSCR0002.PCX etc are being replaced by the new
  55.            ones. So be sure to rename them if you want to save them
  56.            after each run.
  57.  
  58.                The program abots on any error and displays an error message.
  59.  
  60. Installation:  GBVIEW uses the library file "ZIKU" packed with Yan Yongxing's
  61.                byx editor 1.1 or CCLIB.16 file.  CCLIB.16 can be found on
  62.                ahkcus.org in src/unix/ through anonymous ftp.  GB2PCX seeks
  63.                CCLIB.16 file in the sundirectory where GB2PCX.EXE is in,
  64.                if not found it than looks for file named ZIKU there.  If
  65.                both file are absent, a error message is displayed and the
  66.                program aborts.
  67.  
  68. A Few Words About Anonymous ftp:
  69.                FTP (File Transfer Protocal) is generally available on main
  70.                academic networks.  There are hundreds of anonymous ftp sites
  71.                around the world available.
  72.  
  73.                The general format of ftp command is
  74.                   ftp [the site name or its code]
  75.  
  76.                For example: "ftp ahkcus.org" or "ftp ".
  77.  
  78.                If the site is valid, the machine displays:
  79.                   [some message ...]
  80.                   Name:
  81.                you type "anonymous".  It asks:
  82.  
  83.                   Guest login ok, send ident as password.
  84.                   ftp>
  85.  
  86.                You can enter any for a password but an E-mail address is
  87.                often thought as of courtesy.
  88.  
  89.                You now are on site now.  Use the commad "ls -l", you can
  90.                view the directories. On some machine "ls -l" doesn't work,
  91.                you try "dir" or "ls" alone.
  92.  
  93.                To fetch a file, type "get filename".  If the file is binary
  94.                (such as .zip, .arc. or .lzh files), you need to set binary
  95.                mode first:
  96.                   ftp>bin
  97.                You may also want to type "hash" so there is a "#" symbol
  98.                displayed for every 512 bytes of data transfered.
  99.  
  100.                You can obtain a comprehensive list of available ftp sites
  101.                from "pilot.njin.net", or many other places.  For the lists
  102.                of sites that carry chinese, janpanese and korean related
  103.                software, check with kythera.nmsu.edu.
  104.  
  105. Distribution:  GVIEW is free to all users. Always distribute ALL files in
  106.                the package together.
  107.  
  108.                This software is provided as is and thus there is no warranty.
  109.  
  110. Feedback:      Bugs and questions please forward to Roxin Zhang at:
  111.  
  112.            FARZ%NMUMUS@CUNYVM.CUNY.EDU
  113.  
  114. Revising History:
  115. Version        Feature
  116. -------        -------
  117. 1.0            Program written (named GB2PCX).
  118. 1.1            Added left and right margin options (-l# and -r#).
  119.                Removed 320x200 resolution support (-a option).
  120.                Included a utility program PCXMERGE.
  121. 1.2            Renamed as GBVIEW.  Packed with newly written GB2PCX (EGA
  122.                is no longer a prerequisite).